home *** CD-ROM | disk | FTP | other *** search
/ Best of www.BestZips.com (Collector's Edition) / Best of WWW.BESTZIPS.COM Collector's Edition (JCSM Shareware) (JCS Marketing).ISO / grapprog / splt252.zip / NEW.DOC < prev    next >
Text File  |  1994-07-27  |  4KB  |  115 lines

  1.  
  2.  
  3.            S P L O T  -  The Pen Plotter Simulator V2.52
  4.            ---------------------------------------------
  5.            Copyright (C) 1989-94 by Alexandr NOVY
  6.                  All rights reserved.
  7.  
  8.  
  9.  
  10.          The latest changes not described in SPLOT.DOC file
  11.          --------------------------------------------------
  12.                   July 1994
  13.  
  14.  
  15.  
  16.         1. BATCH MODE
  17.         -------------
  18.  
  19.       The SPLOT program can now operate in the so-called 'batch'
  20.     mode. This non-graphic mode is designated for automatic
  21.     exporting of the HP-GL files without user intervention.
  22.     If you want to run the SPLOT program in the batch mode, you
  23.     must use the /BAT option on the SPLOT command line. The
  24.     complete command line syntax is:
  25.  
  26.        SPLOT /BAT [options] [input_file_mask] [output_file_mask]
  27.  
  28.     All parameters are case insensitive.
  29.  
  30.     The input file mask parameter is optional, however you must
  31.     use it if you use the output file mask parameter. The default
  32.     input mask is * and the default input extension is the
  33.     standard plot file extension set in the DEFAULT EXTENSIONS
  34.     dialog in the SPLOT program. The default output mask is *
  35.     and the    default output extension is the    standard extension
  36.     according to the type of export    set in the DEFAULT EXTENSIONS
  37.     dialog in the SPLOT program.
  38.  
  39.  
  40.  
  41.     The options parameters are voluntary. All options parameters
  42.     must be preceded by the / (slash) character. The only options
  43.     parameters supported now are:
  44.  
  45.       1. The EXPORT TYPE parameter can be:
  46.           parameter            export type
  47.           ----------------------------------
  48.           HPGL                  HP-GL
  49.           HPGL2                 HP-GL/2
  50.           DXYGL                 DXY-GL
  51.           PCALL                 PLOTCALL
  52.           DXF                   DXF
  53.           PSBW                  PostScript black&white
  54.           PSC                   PostScript color
  55.           IBMGR            IBM Graphics printer
  56.           IBMX24            IBM X24 printer
  57.           ELX            EPSON LX printer
  58.           EFX            EPSON FX printer
  59.           EEX             EPSON EX printer
  60.           EEXC                  EPSON EX printer color mode
  61.           ELQ             EPSON LQ printer
  62.           ELQC                  EPSON LQ printer color mode
  63.           NEC24            NEC 24 pin printer
  64.           NEC24C                NEC 24 pin printer color mode
  65.           HPLJ            HP LaserJet printer
  66.           HPDJBW            HP DeskJet printer B&W mode
  67.           HPDJC                 HP DeskJet printer color mode
  68.           HPDJ550C              HP DeskJet 550C color mode
  69.           HPPJBW                HP PaintJet printer B&W mode
  70.           HPPJC            HP PaintJet printer color mode
  71.           HPPJXBW            HP PaintJet XL300 B&W mode
  72.           HPPJXC             HP PaintJet XL300 color mode
  73.           HPQJ            HP QuietJet printer
  74.           HPTJ                  HP ThinkJet printer
  75.  
  76.          Example:
  77.  
  78.           SPLOT /bat /hplj *.plt prn
  79.  
  80.          exports all files having a PLT extension to the DOS
  81.          printer port in the HP LaserJet format.
  82.  
  83.          If the export type option is not used, the SPLOT
  84.          program uses the last used export type saved in the
  85.          SPLOT.INI file. Also all other export parameters
  86.          (which cannot be set from the command line yet) are
  87.          loaded from this initialization file. If the SPLOT.INI
  88.          file does not exist, the default values are used.
  89.  
  90.          Note: When running SPLOT program in batch mode the
  91.          program parameters are not saved to the SPLOT.INI file
  92.          after program exit.
  93.  
  94.  
  95.       2. The APPEND parameter can be used if you want to append
  96.          the output data to an existing file(s). Normally the
  97.          SPLOT program in batch mode truncates all the output
  98.          files to zero length before exporting. If the output
  99.          file is common to all input files, the output data
  100.          stream is appended automatically to this output file.
  101.          However if you don't use the APPEND parameter the output
  102.          file is first time opened with overwrite flag.
  103.  
  104.          Examples:
  105.  
  106.            SPLOT /bat /append *.plt *.prn
  107.            appends all output data to the *.prn files.
  108.  
  109.            SPLOT /bat *.plt splot.prn
  110.            truncates the SPLOT.PRN file to zero length, then
  111.            appends all output data to it.
  112.  
  113.            SPLOT /bat /append *.plt splot.prn
  114.            appends all output data to the SPLOT.PRN file.
  115.